oldwd <- getwd() if ( basename(oldwd) == "Reports" ) { setwd("..") } source("extreme-wells.R")
Plates binned by lowest well, ordered by well:
low_table
Lowest wells, ordered by column, then by row:
show( plot_extremes(low_table, order="bycol") )
Clearly wells A12, H12 and A2 stand out.
Lowest wells, ordered by row, then by column:
show( plot_extremes(low_table, order="byrow") )
Plates binned by lowest well, ordered by frequency (top 10 only):
head(arrange(low_table, desc(Freq)), n=10)
Plates binned by highest well, ordered by well:
high_table
Highest wells, ordered by column, then by row:
show( plot_extremes(high_table, order="bycol") )
Highest wells, ordered by row, then by column:
show( plot_extremes(high_table, order="byrow") )
Plates binned by highest well, ordered by frequency (top 10 only):
head(arrange(high_table, desc(Freq)), n=10)
Looks like the bottom outside edge has many of the highest wells.
if ( basename(getwd()) == "Reports" ) { setwd(oldwd) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.